From 56878f647ea0f1066fa3e222d7aa0d83057f496d Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 13 Nov 2023 17:45:59 +0100 Subject: refactor(components): rewrite PostsList component * remove NoResults component and move logic to Search page * add a usePostsList hook * remove Pagination from PostsList (it is only used if javascript is disabled and not on every posts list) * replace `byYear` prop with `sortByYear` * replace `loadMore` prop with `onLoadMore` * remove `showLoadMoreBtn` (we can use `loadMore` prop instead to determine if we need to display the button) * replace `titleLevel` prop with `headingLvl` * add `firstNewResult` prop to handle focus on the new results when loading more article (we should not focus a useless span but the item directly) --- src/pages/sujet/[slug].tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/pages/sujet/[slug].tsx') diff --git a/src/pages/sujet/[slug].tsx b/src/pages/sujet/[slug].tsx index 9094703..66c3d02 100644 --- a/src/pages/sujet/[slug].tsx +++ b/src/pages/sujet/[slug].tsx @@ -21,7 +21,7 @@ import { getTopicsPreview, getTotalTopics, } from '../../services/graphql'; -import styles from '../../styles/pages/topic.module.scss'; +import styles from '../../styles/pages/blog.module.scss'; import type { NextPageWithLayout, PageLink, Topic } from '../../types'; import { ROUTES } from '../../utils/constants'; import { @@ -156,7 +156,6 @@ const TopicPage: NextPageWithLayout = ({ ); const pageUrl = `${website.url}${asPath}`; - const postsListBaseUrl = `${ROUTES.TOPICS}/page/`; return ( <> @@ -225,11 +224,10 @@ const TopicPage: NextPageWithLayout = ({ )} ) : null} -- cgit v1.2.3